home *** CD-ROM | disk | FTP | other *** search
/ Programming Sound Cards / Programming Sound Cards.iso / sound_77 / test.prg < prev   
Text File  |  1995-01-01  |  2KB  |  54 lines

  1. ******************************************************************************
  2. * Program Name: test.prg
  3. * Author: Richard R. Schafer
  4. * Copyright (c) 1989 by RßΣßJßΣß Systems, Moses Lake, WA 98837
  5. *-----------------------------------------------------------------------------
  6. *.............................................................................
  7. * Revision: 1.0 Last Revised: 6/18/1989 at 9:50
  8. * Description: Original Creation.
  9. *.............................................................................
  10. *---------------------------- ALL RIGHTS RESERVED ----------------------------
  11.  
  12. clear
  13.  
  14. column = 00
  15. start = seconds()
  16. for x = 1 to 50
  17.     @ 00,column SAY soundxx("schaefer")
  18.     @ 01,column SAY soundxx("schaffer")
  19.     @ 02,column SAY soundxx("talor")
  20.     @ 03,column SAY soundxx("taylor")
  21.     @ 04,column SAY soundxx("tailor")
  22.     @ 05,column SAY soundxx("tailer")
  23.     @ 08,column say str(x,2,0)
  24. next
  25. @ 06,column say str((seconds() - start),6,3)
  26.  
  27. column = 20
  28. start = seconds()
  29. for x = 1 to 50
  30.     @ 00,column SAY soundex("schaefer")
  31.     @ 01,column SAY soundex("schaffer")
  32.     @ 02,column SAY soundex("talor")
  33.     @ 03,column SAY soundex("taylor")
  34.     @ 04,column SAY soundex("tailor")
  35.     @ 05,column SAY soundex("tailer")
  36.     @ 08,column say str(x,2,0)
  37. next
  38. @ 06,column SAY str((seconds() - start),6,3)
  39.  
  40. column = 40
  41. start = seconds()
  42. for x = 1 to 50
  43.     @ 00,column SAY soundx("schaefer")
  44.     @ 01,column SAY soundx("schaffer")
  45.     @ 02,column SAY soundx("talor")
  46.     @ 03,column SAY soundx("taylor")
  47.     @ 04,column SAY soundx("tailor")
  48.     @ 05,column SAY soundx("tailer")
  49.     @ 08,column say str(x,2,0)
  50. next
  51. @ 06,column SAY str((seconds() - start),6,3)
  52.  
  53. quit
  54.